.container {
  width: 100%;
}
.input_1 {
  outline: none;
  border: none;
  border-bottom: solid 1px var(--black-10);
  display: flex;
  align-items: center;

  &:focus {
    border-color: #b2b4b3;
    transition: border-color 1s;
  }
  @media screen and (max-width: 1000px) {
    font-size: 14px;
  }
  @media screen and (min-width: 1680px) {
    font-size: 17px;
  }
}

.input_2 {
  outline: none;
  border-radius: 0.556vw;
  border: solid 2px #eeeeee;
  display: flex;
  align-items: center;
  padding: 0 calc(4 * var(--xxs-vw));

  &:focus {
    border-color: #10bf6a;
    transition: border-color 1s;
  }
  @media screen and (max-width: 1000px) {
    font-size: 14px;
    padding: 0 12px;
  }
  @media screen and (min-width: 1680px) {
    font-size: 17px;
    padding: 0 18px;
  }
}


.label {
  font-family: SBSansInterface-Semibold;
  font-size: 12px;
  color: #9b9b9b;
  line-height: 1.67;
  margin-bottom: 0.7vw;
  margin-top: 0.7vw;
  text-transform: uppercase;
}
